Clicking on a dot opens the run log.
Sys.time()
#> [1] "2022-10-05 05:38:38 UTC"
gh::gh_rate_limit()
#> $limit
#> [1] 1000
#>
#> $remaining
#> [1] 770
#>
#> $reset
#> [1] "2022-10-05 06:37:32 UTC"
print(messages)
#> [1] "Running on CI, disabling cache"
#> [2] "[01/29] Making API calls for module jaspDescriptives..."
#> [3] "[02/29] Making API calls for module jaspTTests..."
#> [4] "[03/29] Making API calls for module jaspAnova..."
#> [5] "[04/29] Making API calls for module jaspMixedModels..."
#> [6] "[05/29] Making API calls for module jaspRegression..."
#> [7] "[06/29] Making API calls for module jaspFrequencies..."
#> [8] "[07/29] Making API calls for module jaspFactor..."
#> [9] "[08/29] Making API calls for module jaspAudit..."
#> [10] "[09/29] Making API calls for module jaspBain..."
#> [11] "[10/29] Making API calls for module jaspBsts..."
#> [12] "[11/29] Making API calls for module jaspCircular..."
#> [13] "[12/29] Making API calls for module jaspCochrane..."
#> [14] "[13/29] Making API calls for module jaspDistributions..."
#> [15] "[14/29] Making API calls for module jaspEquivalenceTTests..."
#> [16] "[15/29] Making API calls for module jaspJags..."
#> [17] "[16/29] Making API calls for module jaspLearnBayes..."
#> [18] "[17/29] Making API calls for module jaspLearnStats..."
#> [19] "[18/29] Making API calls for module jaspMachineLearning..."
#> [20] "[19/29] Making API calls for module jaspMetaAnalysis..."
#> [21] "[20/29] Making API calls for module jaspNetwork..."
#> [22] "[21/29] Making API calls for module jaspPredictiveAnalytics..."
#> [23] "[21/29] Module jaspPredictiveAnalytics failed with message:"
#> [24] "Error in gh_process_response(raw) : GitHub API error (404): Not Found"
#> [25] "✖ URL not found:"
#> [26] " <https://api.github.com/repos/jasp-stats/jaspPredictiveAnalytics/actions/workflows/unittests.yml/runs?branch=master&event=schedule&created=%3E%3D%202022-09-21&per_page=100>"
#> [27] "ℹ Read more at"
#> [28] " <https://docs.github.com/rest/reference/actions#list-workflow-runs>"
#> [29] ""
#> [30] "[22/29] Making API calls for module jaspProcessControl..."
#> [31] "[23/29] Making API calls for module jaspProphet..."
#> [32] "[24/29] Making API calls for module jaspReliability..."
#> [33] "[25/29] Making API calls for module jaspSem..."
#> [34] "[26/29] Making API calls for module jaspSummaryStatistics..."
#> [35] "[27/29] Making API calls for module jaspSurvival..."
#> [36] "[28/29] Making API calls for module jaspTimeSeries..."
#> [37] "[29/29] Making API calls for module jaspVisualModeling..."
print(repos_successful)
#> [1] "jaspDescriptives" "jaspTTests" "jaspAnova"
#> [4] "jaspMixedModels" "jaspRegression" "jaspFrequencies"
#> [7] "jaspFactor" "jaspAudit" "jaspBsts"
#> [10] "jaspCochrane" "jaspJags" "jaspLearnBayes"
#> [13] "jaspMachineLearning" "jaspMetaAnalysis" "jaspNetwork"
#> [16] "jaspProcessControl" "jaspProphet" "jaspReliability"
#> [19] "jaspSem" "jaspSummaryStatistics"
repos_failed <- setdiff(repos, repos_successful)
print(repos_failed)
#> [1] "jaspBain" "jaspCircular"
#> [3] "jaspDistributions" "jaspEquivalenceTTests"
#> [5] "jaspLearnStats" "jaspPredictiveAnalytics"
#> [7] "jaspSurvival" "jaspTimeSeries"
#> [9] "jaspVisualModeling"